home *** CD-ROM | disk | FTP | other *** search
/ Meeting Pearls 1 / Meeting Pearls Vol 1 (1994).iso / installed_progs / gfx / lise2.1 / lise / src / str / line.c < prev    next >
Encoding:
C/C++ Source or Header  |  1993-03-31  |  333 b   |  22 lines

  1. /* read line from console */
  2. #include <stdio.h>
  3.  
  4. main(argc,argv)
  5. int argc;
  6. char *argv[];
  7. {
  8. char c,s[256];
  9. int i,n,m;
  10. FILE *fp;
  11.  
  12.    if(argc!=1) { /* print help message */
  13.       printf("line\nreturns a line from console input\n");
  14.       printf("\n(C) Rainer Kowallik\n");
  15.       exit(0);
  16.    }
  17.    scanf("%s",s);
  18.    printf("%s\n",s);
  19. }
  20.  
  21.  
  22.